home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1996 September / Designer's Club 1996 September.iso / mac / Idea Source / CANNON.DIR / 00027.ls < prev    next >
Encoding:
Text File  |  1996-08-14  |  672 b   |  27 lines

  1. on mouseDown
  2.   if (the movieTime of sprite 9 > 120) and (the movieTime of sprite 9 < 140) then
  3.     puppetSound("boomhit")
  4.     puppetSprite(8, 1)
  5.     set the castNum of sprite 8 to 35
  6.     updateStage()
  7.     puppetSprite(8, 0)
  8.     play frame "lowleftfry"
  9.     exit
  10.   end if
  11.   if (the movieTime of sprite 9 > 30) and (the movieTime of sprite 9 < 50) then
  12.     puppetSound("boomhit")
  13.     puppetSprite(8, 1)
  14.     set the castNum of sprite 8 to 35
  15.     updateStage()
  16.     puppetSprite(8, 0)
  17.     play frame "lowleftfry"
  18.     exit
  19.   end if
  20.   puppetSprite(8, 1)
  21.   set the castNum of sprite 8 to 35
  22.   updateStage()
  23.   puppetSprite(8, 0)
  24.   puppetSound("boom")
  25.   play frame "lowleftboom"
  26. end
  27.